home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvtools / examples / windows / fonts / makefile next >
Encoding:
Makefile  |  1997-05-08  |  461 b   |  23 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. include <dvwin32.mak>
  4.  
  5. OBJS = showfont.obj
  6. WOBJS = showfixw.obj
  7.  
  8. showfont.exe: $(OBJS) $(TOOL_OBJ)
  9.     $(LINK) $(OBJS)  \
  10.         $(LINKFLAGS) $(guiflags) -out:showfont.exe \
  11.         $(DV_LIBS) $(guilibs)
  12.  
  13. showfixw.exe: $(WOBJS) $(TOOL_OBJ)
  14.     $(LINK) $(WOBJS)  \
  15.         $(LINKFLAGS) $(guiflags) -out:showfixw.exe \
  16.         $(DV_LIBS) $(guilibs)
  17.  
  18. .c.obj:
  19.     $(CC) \
  20.     $(INCDIRS) $(CFLAGS) \
  21.     $<
  22.  
  23.